type net/url.Userinfo

11 uses

	net/url (current package)
		url.go#L279: 	User     *Userinfo // username and password information
		url.go#L311: func User(username string) *Userinfo {
		url.go#L312: 	return &Userinfo{username, "", false}
		url.go#L323: func UserPassword(username, password string) *Userinfo {
		url.go#L324: 	return &Userinfo{username, password, true}
		url.go#L331: type Userinfo struct {
		url.go#L338: func (u *Userinfo) Username() string {
		url.go#L346: func (u *Userinfo) Password() (string, bool) {
		url.go#L355: func (u *Userinfo) String() string {
		url.go#L512: func parseAuthority(scheme, authority string) (user *Userinfo, host string, err error) {

	net/http
		clone.go#L48: 		u2.User = new(url.Userinfo)